Security News
NVD Backlog Tops 20,000 CVEs Awaiting Analysis as NIST Prepares System Updates
NVD’s backlog surpasses 20,000 CVEs as analysis slows and NIST announces new system updates to address ongoing delays.
A simple ES6 class that can be extended to provide macros and getters functionality
Extend
class
prototype in style 😎
Base class for exposing external API to extend the class prototype in a more declarative way.
class Foo {}
module.exports = Foo
Someone can extend it follows.
const Foo = require('./Foo')
Foo.prototype.greet = function () {
return 'Hello!'
}
// or add getter as follow
Object.defineProperty(Foo.prototype, 'username', {
get: function () {
return 'virk'
}
})
const { Macroable } from 'macroable'
class Foo extends Macroable {
}
Foo.macros = {}
Foo.getters = {}
module.exports = Foo
const Foo = require('./Foo')
Foo.macro('greet', function () {
return 'Hello!'
})
Foo.getter('username', function () {
return 'virk'
})
You can see the API is simpler and less verbose. However, there are couple of extra benefits of using Macroable.
Singleton getters are evaluated only once and then cached value is returned.
Foo.getter('baseUrl', function () {
return lazilyEvaluateAndReturnUrl()
}, true) 👈
Using the hydrate
method, you can remove macros and getters added on a given class.
Foo.macro('greet', function (name) {
return `Hello ${name}!`
})
Foo.getter('username', function () {
return 'virk'
})
Foo.hydrate() 👈
Foo.greet // undefined
Foo.username // undefined
FAQs
A simple ES6 class that can be extended to provide macros and getters functionality
We found that macroable demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
NVD’s backlog surpasses 20,000 CVEs as analysis slows and NIST announces new system updates to address ongoing delays.
Security News
Research
A malicious npm package disguised as a WhatsApp client is exploiting authentication flows with a remote kill switch to exfiltrate data and destroy files.
Security News
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.